home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 2 of 2).iso / cheats / lvlinfo / types.h < prev    next >
Text File  |  1995-03-15  |  236b  |  12 lines

  1. //define a byte 
  2. typedef signed char byte;
  3.  
  4. //define unsigned types;
  5. typedef unsigned char ubyte;
  6. typedef unsigned short ushort;
  7. typedef unsigned int uint;
  8. typedef unsigned long ulong;
  9.  
  10. //define a boolean
  11. typedef ubyte bool;
  12.